projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5074447
)
* Fix a type specifier test
author
Andrea Corallo
<akrl@sdf.org>
Mon, 4 Jan 2021 21:14:50 +0000
(22:14 +0100)
committer
Andrea Corallo
<akrl@sdf.org>
Mon, 4 Jan 2021 21:31:40 +0000
(22:31 +0100)
* test/lisp/emacs-lisp/comp-cstr-tests.el
(comp-cstr-typespec-tests-alist): Fix a testcase.
test/lisp/emacs-lisp/comp-cstr-tests.el
patch
|
blob
|
history
diff --git
a/test/lisp/emacs-lisp/comp-cstr-tests.el
b/test/lisp/emacs-lisp/comp-cstr-tests.el
index 149afaf85d84a5fd78c0e4e3f9bbc41ebb353e30..f5ed05244d72b7a8fde3e8198475a556662a31ea 100644
(file)
--- a/
test/lisp/emacs-lisp/comp-cstr-tests.el
+++ b/
test/lisp/emacs-lisp/comp-cstr-tests.el
@@
-103,7
+103,7
@@
;; 30
((and (member foo) (integer 1 2)) . nil)
;; 31
- ((and (member 1 2) (member 3 2)) . (
member
2))
+ ((and (member 1 2) (member 3 2)) . (
integer 2
2))
;; 32
((and number (integer 1 2)) . (integer 1 2))
;; 33